home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / openoffice / program / spadmin < prev    next >
Text File  |  2009-10-22  |  3KB  |  81 lines

  1. #!/bin/sh
  2. #*************************************************************************
  3. #
  4. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5. # Copyright 2008 by Sun Microsystems, Inc.
  6. #
  7. # OpenOffice.org - a multi-platform office productivity suite
  8. #
  9. # $RCSfile: spadmin.sh,v $
  10. #
  11. # $Revision: 1.4 $
  12. #
  13. # This file is part of OpenOffice.org.
  14. #
  15. # OpenOffice.org is free software: you can redistribute it and/or modify
  16. # it under the terms of the GNU Lesser General Public License version 3
  17. # only, as published by the Free Software Foundation.
  18. #
  19. # OpenOffice.org is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22. # GNU Lesser General Public License version 3 for more details
  23. # (a copy is included in the LICENSE file that accompanied this code).
  24. #
  25. # You should have received a copy of the GNU Lesser General Public License
  26. # version 3 along with OpenOffice.org.  If not, see
  27. # <http://www.openoffice.org/license.html>
  28. # for a copy of the LGPLv3 License.
  29. #
  30. #*************************************************************************
  31.  
  32. # enable file locking
  33. SAL_ENABLE_FILE_LOCKING=1
  34. export SAL_ENABLE_FILE_LOCKING
  35.  
  36. # resolve installation directory
  37. sd_cwd="`pwd`"
  38. if [ -h "$0" ] ; then
  39.     sd_basename=`basename "$0"`
  40.      sd_script=`ls -l "$0" | sed "s/.*${sd_basename} -> //g"` 
  41.     cd "`dirname "$0"`"
  42.     cd "`dirname "$sd_script"`"
  43. else
  44.     cd "`dirname "$0"`"
  45. fi
  46. sd_prog=`pwd`
  47. cd "$sd_cwd"
  48.  
  49. #collect all bootstrap variables specified on the command line
  50. #so that they can be passed as arguments to javaldx later on
  51. for arg in $@
  52. do
  53.   case "$arg" in
  54.        -env:*) BOOTSTRAPVARS=$BOOTSTRAPVARS" ""$arg";;
  55.   esac
  56. done
  57.  
  58. # extend the ld_library_path for java: javaldx checks the sofficerc for us
  59. if [ -x "$sd_prog/../basis-link/ure-link/bin/javaldx" ] ; then
  60.     my_path=`"$sd_prog/../basis-link/ure-link/bin/javaldx" $BOOTSTRAPVARS \
  61.         "-env:INIFILENAME=vnd.sun.star.pathname:$sd_prog/redirectrc"`
  62.     if [ -n "$my_path" ] ; then
  63.         LD_LIBRARY_PATH=$my_path${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}
  64.         export LD_LIBRARY_PATH
  65.     fi
  66. fi
  67.  
  68. unset XENVIRONMENT
  69.  
  70. # uncomment line below to disable anti aliasing of fonts
  71. # SAL_ANTIALIAS_DISABLE=true; export SAL_ANTIALIAS_DISABLE
  72.  
  73. # Set PATH so that crash_report is found:
  74. PATH=$sd_prog${PATH+:$PATH}
  75. export PATH
  76.  
  77. # execute binary
  78. exec "$sd_prog/../basis-link/program/spadmin.bin" "$@" \
  79.     "-env:INIFILENAME=vnd.sun.star.pathname:$sd_prog/redirectrc"
  80.